/* ============================================================
   NÓS TÁTICOS (ALVOS)
   ============================================================ */
.alvos-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.no-tatico-final {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 90px;      /* ANTES: 75px, AGORA: 90px */
    height: 90px;
    background: #0a0f18;
    border: 2px solid #2a4a6a;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-family: 'Courier New', monospace;
}

.no-tatico-final.concluido {
    border-color: #00ff66;
    background: #00ff6610;
    box-shadow: 0 0 8px #00ff66;
}

.no-tatico-final.disponivel {
    border-color: #ffaa33;
    box-shadow: 0 0 18px #ffaa33;
    animation: pulseAlvoFinal 1.2s infinite alternate;
}

.no-tatico-final.bloqueado {
    opacity: 0.35;
    filter: grayscale(0.6);
    cursor: not-allowed;
}

.no-icone {
    font-size: 1.8rem;
}

.no-numero {
    font-size: 0.7rem;
    color: #7a9aba;
    margin-top: 5px;
    background: #0a0f18;
    padding: 2px 10px;
    border-radius: 15px;
    font-weight: bold;
}

.no-nome {
    font-size: 0.6rem;
    text-align: center;
    color: #bcd;
    max-width: 78px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 4px;
    font-weight: bold;
}

@keyframes pulseAlvoFinal {
    from { box-shadow: 0 0 4px #ffaa33; border-color: #ffaa33; }
    to { box-shadow: 0 0 20px #ffcc66; border-color: #ffcc66; }
}

.no-tatico-final.recomendado {
    border-color: #ff00cc;
    box-shadow: 0 0 18px #ff00cc;
    animation: pulseRecomendado 1.2s infinite alternate;
}

@keyframes pulseRecomendado {
    from { box-shadow: 0 0 4px #ff00cc; border-color: #ff00cc; }
    to { box-shadow: 0 0 20px #ff66dd; border-color: #ff66dd; }
}

line {
    stroke-width: 3px;
    stroke-dasharray: 8 6;
    filter: drop-shadow(0 0 2px currentColor);
}